home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / RCS / Db_ReadEntry.c,v < prev    next >
Text File  |  1989-06-16  |  4KB  |  220 lines

  1. head     1.5;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.5
  10. date     89.06.15.22.45.23;  author douglis;  state Exp;
  11. branches ;
  12. next     1.4;
  13.  
  14. 1.4
  15. date     89.01.13.11.44.32;  author douglis;  state Exp;
  16. branches ;
  17. next     1.3;
  18.  
  19. 1.3
  20. date     88.09.22.22.12.10;  author douglis;  state Exp;
  21. branches ;
  22. next     1.2;
  23.  
  24. 1.2
  25. date     88.09.13.16.49.35;  author douglis;  state Exp;
  26. branches ;
  27. next     1.1;
  28.  
  29. 1.1
  30. date     88.08.14.15.08.51;  author douglis;  state Exp;
  31. branches ;
  32. next     ;
  33.  
  34.  
  35. desc
  36. @Procedure to open and lock a database file, get a record, and close it
  37. again.
  38. @
  39.  
  40.  
  41. 1.5
  42. log
  43. @create database file if not already there
  44. @
  45. text
  46. @/* 
  47.  * Db_ReadEntry.c --
  48.  *
  49.  *    Source code for the Db_ReadEntry procedure.
  50.  *
  51.  * Copyright 1988 Regents of the University of California
  52.  * Permission to use, copy, modify, and distribute this
  53.  * software and its documentation for any purpose and without
  54.  * fee is hereby granted, provided that the above copyright
  55.  * notice appear in all copies.  The University of California
  56.  * makes no representations about the suitability of this
  57.  * software for any purpose.  It is provided "as is" without
  58.  * express or implied warranty.
  59.  */
  60.  
  61. #ifndef lint
  62. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_ReadEntry.c,v 1.4 89/01/13 11:44:32 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  63. #endif not lint
  64.  
  65.  
  66. #include <db.h>
  67. #include "dbInt.h"
  68.  
  69.  
  70. /*
  71.  *----------------------------------------------------------------------
  72.  *
  73.  * Db_ReadEntry --
  74.  *
  75.  *    Read a buffer from a specified location in the shared database.
  76.  *    This opens and locks the file, reads the data, and closes the
  77.  *    file.  The lock is polled if necessary.    
  78.  *
  79.  * Results:
  80.  *    -1 indicates an error, in which case errno indicates more details.
  81.  *    0 indicates success.
  82.  *
  83.  * Side effects:
  84.  *    None.
  85.  *
  86.  *----------------------------------------------------------------------
  87.  */
  88.  
  89. int
  90. Db_ReadEntry(file, buffer, index, size, lockHow)
  91.     char *file;
  92.     char *buffer;
  93.     int index;
  94.     int size;
  95.     Db_LockHow lockHow;
  96. {
  97.     int status;
  98.     int offset;
  99.     int streamID;
  100.     int bytesRead;
  101.     Db_Handle handle;
  102.     
  103.     streamID = open(file, O_RDONLY | O_CREAT, FILE_MODE);
  104.     if (streamID == -1) {
  105.     syslog(LOG_ERR, "Db_ReadEntry: error opening file %s: %s.\n", file,
  106.            strerror(errno));
  107.     return(streamID);
  108.     }
  109.  
  110.     offset = index * size;
  111.     status = lseek(streamID, (long) offset, L_SET);
  112.     if (status == -1) {
  113.     return(status);
  114.     }
  115.     /*
  116.      * Fake a Db_Handle for DbLockDesc.
  117.      */
  118.     handle.streamID = streamID;
  119.     handle.lockHow = lockHow;
  120.     handle.lockType = LOCK_SH;
  121. #ifndef CLEAN
  122.     handle.fileName = file;
  123. #endif /* CLEAN */
  124.     status = DbLockDesc(&handle);
  125.     if (status == -1) {
  126.     return(status);
  127.     }
  128.     
  129.     bytesRead = read(streamID, buffer, size);
  130.     if (bytesRead == -1) {
  131.     status = -1;
  132.     } else if (bytesRead != size) {
  133.     status = -1;
  134.     errno = 0;
  135.     } else {
  136.     status = 0;
  137.     }
  138.     (void) flock(streamID, LOCK_SH | LOCK_UN);
  139.     (void) close(streamID);
  140.  
  141.     return(status);
  142. }
  143. @
  144.  
  145.  
  146. 1.4
  147. log
  148. @changed for buffering and for new arg passing to lock routine.
  149. [generic checkin msg].
  150. @
  151. text
  152. @d17 1
  153. a17 1
  154. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_ReadEntry.c,v 1.3 88/09/22 22:12:10 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  155. d58 1
  156. a58 1
  157.     streamID = open(file, O_RDONLY, 0);
  158. d60 2
  159. @
  160.  
  161.  
  162. 1.3
  163. log
  164. @Changed some arg. orders, var. names, and Db_LockDesc to DbLockDesc.
  165. @
  166. text
  167. @d17 1
  168. a17 1
  169. static char rcsid[] = "$Header: Db_ReadEntry.c,v 1.2 88/09/13 16:49:35 douglis Exp $ SPRITE (Berkeley)";
  170. d56 1
  171. d68 10
  172. a77 1
  173.     status = DbLockDesc(streamID, LOCK_SH, lockHow);
  174. @
  175.  
  176.  
  177. 1.2
  178. log
  179. @fixed some lint.
  180. @
  181. text
  182. @d17 1
  183. a17 1
  184. static char rcsid[] = "$Header: Db_ReadEntry.c,v 1.1 88/08/14 15:08:51 douglis Exp $ SPRITE (Berkeley)";
  185. d45 1
  186. a45 1
  187. Db_ReadEntry(file, index, bufSize, buf, lockHow)
  188. d47 1
  189. d49 1
  190. a49 2
  191.     int bufSize;
  192.     char *buf;
  193. d62 1
  194. a62 1
  195.     offset = index * bufSize;
  196. d67 1
  197. a67 1
  198.     status = Db_LockDesc(streamID, LOCK_SH, lockHow);
  199. d72 1
  200. a72 1
  201.     bytesRead = read(streamID, buf, bufSize);
  202. d75 1
  203. a75 1
  204.     } else if (bytesRead != bufSize) {
  205. @
  206.  
  207.  
  208. 1.1
  209. log
  210. @Initial revision
  211. @
  212. text
  213. @d17 1
  214. a17 1
  215. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  216. d63 1
  217. a63 1
  218.     status = lseek(streamID, offset, L_SET);
  219. @
  220.